From bf882d441791b08e78b3de8fab69b29fbc185c30 Mon Sep 17 00:00:00 2001 From: Alex Larsson Date: Thu, 6 Sep 2001 21:51:35 +0000 Subject: [PATCH] Use GtkType/GType instead of uint. 2001-09-06 Alex Larsson * gtk/gtkbin.c: * gtk/gtkfontsel.c: * gtk/gtkspinbutton.c: * gtk/gtktipsquery.c: Use GtkType/GType instead of uint. --- ChangeLog | 8 ++++++++ ChangeLog.pre-2-0 | 8 ++++++++ ChangeLog.pre-2-10 | 8 ++++++++ ChangeLog.pre-2-2 | 8 ++++++++ ChangeLog.pre-2-4 | 8 ++++++++ ChangeLog.pre-2-6 | 8 ++++++++ ChangeLog.pre-2-8 | 8 ++++++++ gtk/gtkbin.c | 2 +- gtk/gtkfontsel.c | 2 +- gtk/gtkspinbutton.c | 2 +- gtk/gtktipsquery.c | 2 +- 11 files changed, 60 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8d4323a5d3..d037cd8879 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2001-09-06 Alex Larsson + + * gtk/gtkbin.c: + * gtk/gtkfontsel.c: + * gtk/gtkspinbutton.c: + * gtk/gtktipsquery.c: + Use GtkType/GType instead of uint. + Tue Sep 4 18:13:43 2001 Jonathan Blandford * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 8d4323a5d3..d037cd8879 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,11 @@ +2001-09-06 Alex Larsson + + * gtk/gtkbin.c: + * gtk/gtkfontsel.c: + * gtk/gtkspinbutton.c: + * gtk/gtktipsquery.c: + Use GtkType/GType instead of uint. + Tue Sep 4 18:13:43 2001 Jonathan Blandford * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 8d4323a5d3..d037cd8879 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,11 @@ +2001-09-06 Alex Larsson + + * gtk/gtkbin.c: + * gtk/gtkfontsel.c: + * gtk/gtkspinbutton.c: + * gtk/gtktipsquery.c: + Use GtkType/GType instead of uint. + Tue Sep 4 18:13:43 2001 Jonathan Blandford * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 8d4323a5d3..d037cd8879 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,11 @@ +2001-09-06 Alex Larsson + + * gtk/gtkbin.c: + * gtk/gtkfontsel.c: + * gtk/gtkspinbutton.c: + * gtk/gtktipsquery.c: + Use GtkType/GType instead of uint. + Tue Sep 4 18:13:43 2001 Jonathan Blandford * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 8d4323a5d3..d037cd8879 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,11 @@ +2001-09-06 Alex Larsson + + * gtk/gtkbin.c: + * gtk/gtkfontsel.c: + * gtk/gtkspinbutton.c: + * gtk/gtktipsquery.c: + Use GtkType/GType instead of uint. + Tue Sep 4 18:13:43 2001 Jonathan Blandford * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 8d4323a5d3..d037cd8879 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,11 @@ +2001-09-06 Alex Larsson + + * gtk/gtkbin.c: + * gtk/gtkfontsel.c: + * gtk/gtkspinbutton.c: + * gtk/gtktipsquery.c: + Use GtkType/GType instead of uint. + Tue Sep 4 18:13:43 2001 Jonathan Blandford * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 8d4323a5d3..d037cd8879 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,11 @@ +2001-09-06 Alex Larsson + + * gtk/gtkbin.c: + * gtk/gtkfontsel.c: + * gtk/gtkspinbutton.c: + * gtk/gtktipsquery.c: + Use GtkType/GType instead of uint. + Tue Sep 4 18:13:43 2001 Jonathan Blandford * gtk/gtkliststore.c (gtk_list_store_init): fix initial val for diff --git a/gtk/gtkbin.c b/gtk/gtkbin.c index e412869b24..e43042a166 100644 --- a/gtk/gtkbin.c +++ b/gtk/gtkbin.c @@ -46,7 +46,7 @@ static GtkContainerClass *parent_class = NULL; GtkType gtk_bin_get_type (void) { - static guint bin_type = 0; + static GtkType bin_type = 0; if (!bin_type) { diff --git a/gtk/gtkfontsel.c b/gtk/gtkfontsel.c index 06d084951c..3a64503181 100644 --- a/gtk/gtkfontsel.c +++ b/gtk/gtkfontsel.c @@ -922,7 +922,7 @@ gtk_font_selection_set_preview_text (GtkFontSelection *fontsel, GtkType gtk_font_selection_dialog_get_type (void) { - static guint font_selection_dialog_type = 0; + static GtkType font_selection_dialog_type = 0; if (!font_selection_dialog_type) { diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index c9212c16c5..fac28a46a3 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -134,7 +134,7 @@ static guint spinbutton_signals[LAST_SIGNAL] = {0}; GtkType gtk_spin_button_get_type (void) { - static guint spin_button_type = 0; + static GtkType spin_button_type = 0; if (!spin_button_type) { diff --git a/gtk/gtktipsquery.c b/gtk/gtktipsquery.c index 03d2a8d821..ed16c1f730 100644 --- a/gtk/gtktipsquery.c +++ b/gtk/gtktipsquery.c @@ -84,7 +84,7 @@ static guint tips_query_signals[SIGNAL_LAST] = { 0 }; GtkType gtk_tips_query_get_type (void) { - static guint tips_query_type = 0; + static GtkType tips_query_type = 0; if (!tips_query_type) { -- 2.30.2